home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / unix / textmstr.shr / tm.hqx / Source Code ƒ / U / EventsTextMaster.h < prev    next >
Text File  |  1991-05-09  |  865b  |  30 lines

  1. /*  EventsTextMaster                                                     Additional event handler routines
  2.  
  3. File name:  EventsTextMaster.h  
  4. Function:  This module contains the extra event handler routines
  5.      These routines allow us to override events in the main loop,
  6.      and to handle unique events.
  7. /* History: 5/9/91 Original by Prototyper 3.0   */
  8.  
  9.  
  10. /* ======================================================= */
  11.  
  12. /* Handle special key combinations */
  13. Boolean HandleKey(EventRecord *myevent);
  14.  
  15. /* Special disk inserted handling */
  16. Boolean HandleDisk(EventRecord *myevent);
  17.  
  18. /* Let us into the main loop */
  19. void ApplLoop_TextMaster(void);
  20.  
  21. /* Filter events from the main loop */
  22. void ApplEvent_TextMaster(Boolean *DoIt, EventRecord *myEvent);
  23.  
  24. /* Handle our special user events */
  25. void Handle_UserEvent(UserEventRec *TheUserEvent);
  26.  
  27.  
  28. /* ======================================================= */
  29.  
  30.